home *** CD-ROM | disk | FTP | other *** search
/ SPACE 2 / SPACE - Library 2 - Volume 1.iso / program / 17 / examples / fib.lsp < prev    next >
Encoding:
Lisp/Scheme  |  1988-07-13  |  93 b   |  4 lines

  1. (defun fib (x)
  2.        (cond ((< x 2) 1)
  3.              (t (+ (fib (1- x)) (fib (- x 2))))))
  4.